home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / modemmanager / README < prev   
Text File  |  2009-10-14  |  2KB  |  35 lines

  1. ModemManager.
  2. The problem ModemManager tries to solve is to provide a unified high level API
  3. for communicating with (mobile broadband) modems. While the basic commands are
  4. standardized, the more advanced operations (like signal quality monitoring 
  5. while connected) varies a lot.
  6.  
  7. Using.
  8. ModemManager is a system daemon and is not meant to be used directly from
  9. the command line. However, since it provides DBus API, it is possible to use
  10. 'dbus-send' command to control it from the terminal. There's an example
  11. program (tests/mm-test.py) that demonstrates the basic API usage.
  12.  
  13. Implementation.
  14. ModemManager is a DBus system bus activated service (meaning it's started 
  15. automatically when a request arrives). It is written in C. The devices are
  16. queried from HAL and automatically updated based on hardware events. There's
  17. a GInterface (MMModem) that defines the modem interface and any device specific
  18. implementation must implement it. There are two generic MMModem implementations
  19. to support the basic operations (one for GSM, one for CDMA,) which are common
  20. for all cards.
  21.  
  22. Plugins.
  23. Plugins are loaded on startup, and must implement the MMPlugin interface. It
  24. consists of a couple of methods which tell the daemon whether the plugin
  25. supports a HAL UDI and to create custom MMModem implementations. It most likely
  26. makes sense to derive custom modem implementations from one of the generic
  27. classes and just add (or override) operations which are not standard. There's a
  28. fully working plugin in the plugins/ directory for Huawei cards that can be
  29. used as an example for writing new plugins. Writing new plugins is highly
  30. encouraged!
  31.  
  32. API.
  33. The API is open for changes, so if you're writing a plugin and need to add or
  34. change some public method, feel free to suggest it!
  35.